home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / wdj0796.zip / ZOLMAN.ZIP / SIMLOCK.H < prev   
C/C++ Source or Header  |  1996-04-25  |  418b  |  30 lines

  1. // simlock.h
  2.  
  3. #ifndef SIMLOCK_H
  4. #define SIMLOCK_H
  5.  
  6. #include <windows.h>
  7. #include <ddraw.h>
  8.  
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13. BOOL
  14. CreateBuffer(const DWORD dwWidth,
  15.              const DWORD dwHeight,
  16.              const DWORD dwBpp);
  17. VOID
  18. FreeBuffer(VOID);
  19. LPVOID
  20. LockBuffer(LPRECT lpRect);
  21. HRESULT
  22. UnlockBuffer(LPDIRECTDRAWSURFACE lpDDSurface);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif
  29.  
  30.